/* ===== ABOUT SECTION ===== */
.section {
    padding: 5rem 1.5rem;
    background: linear-gradient(to right, #f1f5f9, #e2e8f0);
    color: #1e293b;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    display: block;
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  /* Layout Grid */
  .about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 3rem;
  }
  
  /* Image */
  .about-img {
    width: 100%;
    max-width: 380px;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    justify-self: center;
  }
  
  /* Text Content */
  .about-data {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
  }
  
  /* Info Cards */
  .about-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .about-info-item {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .about-info-item:hover {
    transform: translateY(-5px);
  }
  
  .about-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
  }
  
  .about-info-name {
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  /* Button */
  .about-buttons .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.2);
  }
  
  .about-buttons .button:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
  }
  
  .button-icon {
    font-size: 1rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-info {
      justify-content: center;
    }
  
    .about-buttons {
      text-align: center;
    }
  }
  